FlexGrid for WinRT
Create(Func<Object,Type,Object,String,Object>,Func<Object,Type,Object,String,Object>) Method
Example 

The converter function. (value, type, parameter, culture)
The convert back function. (value, type, parameter, culture)
Creates the specified converter function.
Syntax
'Declaration
 
Public Overloads Shared Function Create( _
   ByVal converterFunction As System.Func(Of Object,Type,Object,String,Object), _
   ByVal converterBackFunction As System.Func(Of Object,Type,Object,String,Object) _
) As Windows.UI.Xaml.Data.IValueConverter
public static Windows.UI.Xaml.Data.IValueConverter Create( 
   System.Func<object,Type,object,string,object> converterFunction,
   System.Func<object,Type,object,string,object> converterBackFunction
)

Parameters

converterFunction
The converter function. (value, type, parameter, culture)
converterBackFunction
The convert back function. (value, type, parameter, culture)

Return Value

The converted value
Example
var converter = CustomConverter.Create((value, type, parameter, culture)=>
{
    return; //Put the converter code here
});
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CustomConverter Class
CustomConverter Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.

Product Support Forum  |   Documentation Feedback